|
COPY MEMORY
This command will copy a chunk of data from one part of memory to another.
COPY MEMORY Memory Destination, Memory Source, Size In Bytes
Memory Destination
Dword
This value is a positive number between 0 and 4294967295.
Memory Source
Dword
This value is a positive number between 0 and 4294967295.
Size In Bytes
Integer
This value is an integer number such as 1.
This command does not return a value.
Ideally this command is used to copy data from one memory block to another, or to and from a locked resource in memory. Look at the MAKE MEMORY command for details on how to create a memory block.
dst as DWORD
src as DWORD
dst=MAKE MEMORY(1024)
src=MAKE MEMORY(1024)
COPY MEMORY dst,src,512
WAIT KEY
CORE Commands Menu
Index
|